Encrypt With Public Key
POST /api/v1/keys/:apiKey/encrypt
Description
Encrypt data using the public key associated with the provided API key.
URL:
- Raw URL:
/api/v1/keys/:apiKey/encrypt - Host:
- Path:
/api/v1/keys/:apiKey/encrypt - Variables:
- apiKey: (Required)
Headers:
- authorizer-api-key: (Required)
- authorizer-api-code: (Required)
- Content-Type: application/json
Response:
- Status: Created (201)
/api/v1/keys/:apiKey/encrypt
Headers
| Content-Type | Value |
|---|---|
| authorizer-api-key | string |
Headers
| Content-Type | Value |
|---|---|
| authorizer-api-code | string |
Headers
| Content-Type | Value |
|---|---|
| Content-Type | application/json |
Body (raw)
{
"payload": {}
}
Response: 201
LANGUAGE
CURL REQUEST
curl --request POST \
--url /api/v1/keys/:apiKey/encrypt \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!